home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / pin0796.zip / QWKSTUFF.ZIP / SAMPLE.BAT < prev    next >
DOS Batch File  |  1995-09-03  |  2KB  |  40 lines

  1. ;Remember to change hub.* to your hubs QWK packet name
  2. ;also, change all directories to match where you'd like
  3. ;incoming and outgoing mail to be put.
  4.  
  5. @ECHO OFF
  6. IF EXIST F:\TM\MAIL\HUB.QWK GOTO MAIN  ; if you didn't get mail, this
  7. GOTO CALLOUT                           ; this section will upload the
  8.                                        ; last rep packet, instead of 
  9.                                        ; overwriting it.
  10. :MAIN
  11. F:\
  12. CD\WC30
  13. TNET EXPORT hub                        ;change this to match your mail
  14. GOTO CLEAN                             ; tosser command line.
  15.  
  16.  
  17. :CLEAN                                 ; This is if you keep old msg
  18. CD\TM\MAIL                             ;packets, it cleans them up
  19. IF EXIST hub.QW1 DEL hub.QW1           ;after 3 days. Nice if there is 
  20. IF EXIST hub.QW0 REN hub.QW0 *.QW1     ; a problem with an import
  21. IF EXIST hub.QWK REN hub.QWK  hub.QW0
  22. GOTO CALLOUT
  23.  
  24. :CALLOUT                                ; this calls Telemate on my system
  25. CD\TM                                   ; and executes a script, change it
  26. TM hub.SCR                              ; to match your comm program
  27. IF EXIST F:\TM\MAIL\hub.QWK GOTO IMPORT ;if there is new mail, it will go to 
  28. GOTO END                                ; import, if not, it will end.
  29.  
  30. :IMPORT                                 ; This imports your mail, change
  31. CD\WC30                                 ; to match the tosser you use.
  32. TNET IMPORT hub
  33. GOTO END
  34.  
  35. :END
  36. exit                                    ; If you terminate your bbs on
  37.                                         ; events, remove the exit and put
  38.                                         ; the batch file to restart the 
  39.                                         ; BBS.
  40.